e7d330a95e5e6a92eca16f79b5c080d2c257e17b,reporters/reporter-default/src/main/java/org/radargun/reporting/html/ReportDocument.java,ReportDocument,getHistogramName,#OperationStats#String#String#number#number#String#Collection#,364
Before Change
String node, Collection<StatisticType> presentedStatistics) {
String resultFileName = "";
if (presentedStatistics.contains(StatisticType.HISTOGRAM)) {
final Histogram histogram = operationStats == null ? null : operationStats.getRepresentation(Histogram.class, configuration.histogramBuckets, configuration.histogramPercentile);
if (histogram == null) {
return resultFileName;
} else {
After Change
String node, Collection<StatisticType> presentedStatistics) {
String resultFileName = "";
if (presentedStatistics.contains(StatisticType.HISTOGRAM)) {
final Histogram histogram = statistics.getRepresentation(operation, Histogram.class, configuration.histogramBuckets, configuration.histogramPercentile);
if (histogram == null) {
return resultFileName;
} else {